home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_400 / 412_01 / src / unisear / makefile.gcc < prev    next >
Encoding:
Makefile  |  1993-12-29  |  229 b   |  15 lines

  1. CC = gcc
  2. LIB = ar 
  3. CFLAGS = -I../../include -O2
  4.  
  5. OBJS = search.o gbest.o gbreadth.o gdepth.o gucost.o \
  6.        tbreadth.o tdepth.o tucost.o
  7.  
  8. .cc.o:
  9.     $(CC) $(CFLAGS) -c $<
  10.  
  11. all:    $(OBJS)
  12.     $(LIB) rcs ../../lib/libsearch.a $(OBJS)
  13.  
  14.  
  15.